From: Roger Pau Monne Date: Thu, 15 Dec 2011 17:55:46 +0000 (+0100) Subject: libxl: fix incorrect log message in libxl_domain_destroy X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~9312 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=8e4cd77b8ad4bb9e289a64c867d99bc7d30c22eb;p=xen.git libxl: fix incorrect log message in libxl_domain_destroy Fix a log message that was referring to libxl_devices_dispose instead of libxl__devices_destroy. Signed-off-by: Roger Pau Monne Acked-by: Ian Jackson Committed-by: Ian Jackson Acked-by: Ian Jackson --- diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c index 6a33844705..99b29eb517 100644 --- a/tools/libxl/libxl.c +++ b/tools/libxl/libxl.c @@ -773,7 +773,8 @@ int libxl_domain_destroy(libxl_ctx *ctx, uint32_t domid, int force) libxl__qmp_cleanup(gc, domid); } if (libxl__devices_destroy(gc, domid, force) < 0) - LIBXL__LOG(ctx, LIBXL__LOG_ERROR, "libxl_devices_dispose failed for %d", domid); + LIBXL__LOG(ctx, LIBXL__LOG_ERROR, + "libxl__devices_destroy failed for %d", domid); vm_path = libxl__xs_read(gc, XBT_NULL, libxl__sprintf(gc, "%s/vm", dom_path)); if (vm_path)